home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- final class AbstractMap$2$1 implements Iterator<V> {
- // $FF: renamed from: i java.util.Iterator
- private Iterator<Map.Entry<K, V>> field_0;
- // $FF: synthetic field
- final AbstractMap.2 this$1;
-
- AbstractMap$2$1(AbstractMap.2 var1) {
- this.this$1 = var1;
- this.field_0 = this.this$1.this$0.entrySet().iterator();
- }
-
- public boolean hasNext() {
- return this.field_0.hasNext();
- }
-
- public V next() {
- return (V)((Map.Entry)this.field_0.next()).getValue();
- }
-
- public void remove() {
- this.field_0.remove();
- }
- }
-